home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / redakcyjne / programy / MediaMonkey 3.1.0.1256 / MediaMonkey_3.1.0.1256.exe / {app} / Scripts / MediaMonkey init.vbs < prev    next >
Text File  |  2008-02-11  |  2KB  |  66 lines

  1. ' MessageBox type constants
  2. const mtWarning      = 0
  3. const mtError        = 1
  4. const mtInformation  = 2
  5. const mtConfirmation = 3
  6. const mtCustom       = 4
  7.  
  8.  
  9. ' MessageBox buttons constants
  10. const mbYes         =  0
  11. const mbYesToAll    =  1
  12. const mbNo          =  2
  13. const mbNoToAll     =  3
  14. const mbOk          =  4
  15. const mbOkToAll     =  5
  16. const mbEdit        =  6
  17. const mbEditToAll   =  7
  18. const mbCancel      =  8
  19. const mbAbort       =  9
  20. const mbRetry       = 10
  21. const mbIgnore      = 11
  22. const mbIgnoreToAll = 12
  23. const mbAll         = 13
  24. const mbHelp        = 14
  25.  
  26.  
  27. ' MessageBox results
  28. const mrNone        =   0
  29. const mrOk          =   1
  30. const mrCancel      =   2
  31. const mrAbort       =   3
  32. const mrRetry       =   4
  33. const mrIgnore      =   5
  34. const mrYes         =   6
  35. const mrNo          =   7
  36. const mrAll         =   8
  37. const mrNoToAll     =   9
  38. const mrYesToAll    =  10
  39. const mrOkToAll     = 110
  40. const mrIgnoreToAll = 111
  41.  
  42.  
  43. ' Common Dialog (Open/Save) constants
  44. const cdlOFNOverwritePrompt    = &H0002
  45. const cdlOFNHideReadOnly       = &H0004
  46. const cdlOFNNoChangeDir        = &H0008
  47. const cdlOFNAllowMultiselect   = &H0200
  48. const cdlOFNExtensionDifferent = &H0400
  49. const cdlOFNPathMustExist      = &H0800
  50. const cdlOFNFileMustExist      = &H1000
  51. const cdlOFNCreatePrompt       = &H2000
  52. const cdlOFNNoReadOnlyReturn   = &H8000
  53.  
  54.  
  55. ' Tree nodes placements
  56. 'const NodePos_InsertBefore   = 0
  57. 'const NodePos_InsertAfter    = 1
  58. 'const NodePos_AddChildFirst  = 2
  59. 'const NodePos_AddChildLast   = 3
  60.  
  61. ' Drag&Drop constants
  62. 'const DragDrop_No            = 0
  63. 'const DragDrop_Copy          = 1
  64. 'const DragDrop_Move          = 2
  65. 'const DragDrop_JustMove      = 3
  66. 'const DragDrop_JustCopy      = 4